textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    resize: none;
  }
  button {
    padding: 12px;
    background-color: #d9534f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .button-container {
    text-align: center;
  }
  #captureButton,
      #switchCameraButton,
      #downloadButton,
      #zoomInButton,
      #zoomOutButton,
      #resetButton,
      .filterButton {
        display: block;
        width: 100%;
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
      }
      #previewImage {
        width: 100%;
        max-width: 800px;
        display: none;
        margin-top: 20px;
      }